Skip to main content
POST
/
action
/
meeting_followup_generate_all_artifacts
[F5+F6] Generate All Artifacts (Fast)
curl --request POST \
  --url https://api-lr.agent.ai/v1/action/meeting_followup_generate_all_artifacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transcript_analysis": "{{transcript_analysis}}",
  "enriched_event": "{{enriched_calendar_event}}",
  "output_variable_name": "all_artifacts",
  "user_context": "{{followup_context}}",
  "user_context_data": "{{user.context}}",
  "fast_model": "gpt-5-mini",
  "quality_model": "gpt-5",
  "team_channel": "#sales-team",
  "meeting_memories_answer": "{{meeting_memories_answer.llm_response}}"
}
'
{
  "status": 123,
  "response": {}
}

Authorizations

Authorization
string
header
required

Bearer token from your account (https://agent.ai/user/integrations#api)

Body

application/json
transcript_analysis
string
default:{{transcript_analysis}}
required

The analysis from Analyze Transcript action (F4).

enriched_event
string
default:{{enriched_calendar_event}}
required

The enriched event data with meeting info from Enrich Calendar Event.

output_variable_name
string
default:all_artifacts
required

Variable name to store all artifacts. Also sets: coaching_insights, followup_artifacts, followup_email, crm_summary, task_list, team_update, email_subject, results_subject, strengths, improvements, recommendations.

Pattern: ^[a-zA-Z][a-zA-Z0-9_]*$
user_context
string
default:{{followup_context}}

User context from Load Followup Context action (F2).

user_context_data
string
default:{{user.context}}

Raw user.context data as fallback for user name/role.

fast_model
enum<string>
default:gpt-5-mini

Model for CRM notes, tasks, and team update.

Available options:
gpt-5-mini,
gpt-5,
gpt-4o-mini,
claude-haiku-4-5
quality_model
enum<string>
default:gpt-5

Model for coaching and email (higher quality).

Available options:
gpt-5,
gpt-5-mini,
claude-sonnet-4-5,
gpt-4o
team_channel
string
default:#sales-team

Slack channel for team update.

meeting_memories_answer
string
default:{{meeting_memories_answer.llm_response}}

Optional. LLM response from Query Meeting Memories action providing cross-meeting context from prior meetings in this series.

Response

Successful response

status
integer<int32>

HTTP status code of the action response

response
object

Response data from the action